summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Bouvier <contact@amb.tf>2022-10-25 17:20:23 +0200
committerGitHub <noreply@github.com>2022-10-25 17:20:23 +0200
commitfa9b7db76f4c179e2af2f6f1974f92858586d533 (patch)
tree5ba9769d8e9f82532060fa6780053d30cb4f7ce8
parentMerge pull request #9112 from vonchenplus/deferred_draw (diff)
downloadyuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar
yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.gz
yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.bz2
yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.lz
yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.xz
yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.zst
yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.zip
-rw-r--r--src/tests/video_core/buffer_base.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/video_core/buffer_base.cpp b/src/tests/video_core/buffer_base.cpp
index 71121e42a..f7236afab 100644
--- a/src/tests/video_core/buffer_base.cpp
+++ b/src/tests/video_core/buffer_base.cpp
@@ -44,7 +44,7 @@ public:
[[nodiscard]] unsigned Count() const noexcept {
unsigned count = 0;
- for (const auto [index, value] : page_table) {
+ for (const auto& [index, value] : page_table) {
count += value;
}
return count;